-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix npu bug. #3136
base: main
Are you sure you want to change the base?
fix npu bug. #3136
Conversation
if torch.cuda.current_device() != points_device: | ||
torch.cuda.set_device(points_device) | ||
elif points.device.type == 'npu': | ||
boxes[:, :, 2] += boxes[:, :, 5] / 2.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could we move this into npu kernel?
if ctx.device == 'npu': | ||
import ads_c | ||
voxel_idx = ads_c.point_to_voxel(coors, None, None) | ||
unique_res = ads_c.unique_voxel(voxel_idx) | ||
num_voxels, uniqued_voxel_idx, prefix_sum, \ | ||
argsort_coor = unique_res | ||
voxel_coors = ads_c.voxel_to_point(uniqued_voxel_idx, None, None) | ||
voxel_feats, \ | ||
compare_mask = ads_c.npu_dynamic_scatter(feats, coors, | ||
prefix_sum, | ||
argsort_coor, | ||
num_voxels, | ||
reduce_type) | ||
ctx.reduce_type = reduce_type | ||
ctx.feats_shape = feats.shape | ||
ctx.save_for_backward(prefix_sum, argsort_coor, compare_mask) | ||
ctx.mark_non_differentiable(voxel_coors) | ||
return voxel_feats, voxel_coors | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same above
@@ -50,6 +69,19 @@ def forward(ctx: Any, | |||
def backward(ctx: Any, | |||
grad_voxel_feats: torch.Tensor, | |||
grad_voxel_coors: Optional[torch.Tensor] = None) -> tuple: | |||
if ctx.device == 'npu': |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same above
@@ -34,6 +34,21 @@ def forward(ctx: Any, target: torch.Tensor, | |||
|
|||
B, N, _ = target.size() | |||
m = source.size(1) | |||
if source.device.type == 'npu': | |||
# strict to fp32 | |||
source = source.transpose(2, 1).contiguous() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same above
dets_cw = dets_cw.float() | ||
scores = scores.float() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could we move this into npu kernel?
Thanks for your contribution and we appreciate it a lot. The following instructions would make your pull request more healthy and more easily get feedback. If you do not understand some items, don't worry, just make the pull request and seek help from maintainers.
Motivation
Please describe the motivation of this PR and the goal you want to achieve through this PR.
Modification
Please briefly describe what modification is made in this PR.
BC-breaking (Optional)
Does the modification introduce changes that break the backward-compatibility of the downstream repositories?
If so, please describe how it breaks the compatibility and how the downstream projects should modify their code to keep compatibility with this PR.
Use cases (Optional)
If this PR introduces a new feature, it is better to list some use cases here, and update the documentation.
Checklist
Before PR:
After PR: